home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / messaging / config / LoaderConfig.as
Text File  |  2009-02-12  |  662b  |  33 lines

  1. package mx.messaging.config
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class LoaderConfig
  8.    {
  9.       
  10.       mx_internal static var _url:String = null;
  11.       
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.       
  14.       mx_internal static var _parameters:Object;
  15.        
  16.       
  17.       public function LoaderConfig()
  18.       {
  19.          super();
  20.       }
  21.       
  22.       public static function get url() : String
  23.       {
  24.          return mx_internal::_url;
  25.       }
  26.       
  27.       public static function get parameters() : Object
  28.       {
  29.          return mx_internal::_parameters;
  30.       }
  31.    }
  32. }
  33.